home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / jots.zip / JOT.MAK < prev    next >
Text File  |  1989-03-14  |  1KB  |  51 lines

  1. # Make file for JOTS.EXE
  2.  
  3. .bas.obj:
  4.     BC $*.BAS /O;
  5.  
  6. words.obj:            words.bas         j.inc
  7.  
  8. guess.obj:            guess.bas         j.inc
  9.  
  10. gueslist.obj:        gueslist.bas     j.inc
  11.  
  12. score.obj:            score.bas         j.inc
  13.  
  14. usedlist.obj:        usedlist.bas     j.inc
  15.  
  16. posslist.obj:        posslist.bas     j.inc
  17.  
  18. knwnlist.obj:        knwnlist.bas     j.inc
  19.  
  20. msgbox.obj:            msgbox.bas         j.inc
  21.  
  22. boxes.obj:            boxes.bas         j.inc
  23.  
  24. main.obj:                main.bas             j.inc
  25.  
  26. note.obj:                note.bas            j.inc
  27.  
  28. menu.obj:                menu.bas            j.inc
  29.  
  30. instruct.obj:        instruct.bas    j.inc
  31.  
  32. jots.exe:        words.obj            guess.obj     gueslist.obj    score.obj  \
  33.                         usedlist.obj    posslist.obj    knwnlist.obj    msgbox.obj \
  34.                         boxes.obj            main.obj            note.obj          menu.obj   \
  35.                         instruct.obj
  36.             Echo /E main     +    >     jots.lnk
  37.             Echo words        + >>    jots.lnk
  38.             Echo guess         +    >>    jots.lnk
  39.             Echo gueslist +    >>    jots.lnk
  40.             Echo score        + >>    jots.lnk
  41.             Echo usedlist    +    >>    jots.lnk
  42.             Echo posslist    +    >>    jots.lnk
  43.             Echo knwnlist    + >>    jots.lnk
  44.             Echo msgbox        + >>    jots.lnk
  45.             Echo boxes        +    >>    jots.lnk
  46.             Echo menu            + >>    jots.lnk
  47.             Echo instruct    + >>    jots.lnk
  48.             Echo note                >>    jots.lnk
  49.             Echo jots.exe;    >>    jots.lnk
  50.             LINK @jots.lnk
  51.